fix(voice): bump bundled stackvox floor to 0.7.0#122
Merged
Conversation
Raise the stackvox pin from >=0.4.0 to >=0.7.0 in both the bundled-venv build (build.sh) and the source/install path (install.sh). 0.6.0 added md speech normalization + sentence-by-sentence streaming synthesis; 0.7.0 adds a normalize/paths/config CLI surface. The floor lets us rely on those without a runtime version guard. The model cache (~/.cache/stackvox) is unchanged, so the download stays shared across every stackvox consumer on the machine and upgrading the engine does not re-trigger the ~325 MB model download. Scoped fix (not build) so release-please cuts a patch release and CI rebuilds the bundle with the new engine — a build-scoped commit would not trigger a release. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
795cea5 to
1e4b70e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Raise the stackvox pin from
>=0.4.0to>=0.7.0in both install paths:build.sh:106— the CI bundled-venv build (pip install 'stackvox>=0.7.0')install.sh:92— the source/Linux install path (STACKVOX_SPEC)Why
stackvox 0.7.0 is live on PyPI. Since 0.4.0 it has added:
normalize / paths / configCLI surfaceThe floor lets us rely on those without a runtime version guard. All changes are additive — the
say/serve/voicessubcommands the panel andnotify.shcall are unchanged, so no Swift or shell changes are needed.Delivery notes
~/.stack-nudge/venvsymlink resolves into the swapped bundle).~/.cache/stackvox) is unchanged, so the download stays shared across every stackvox consumer on the machine, and upgrading the engine does not re-trigger the ~325 MB model download (samemodel-files-v1.0;_ensure_modelsskips existing files).